home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / MPI_Waitall.z / MPI_Waitall
Encoding:
Text File  |  2002-10-03  |  3.0 KB  |  133 lines

  1.  
  2.  
  3.  
  4. MMMMPPPPIIII____WWWWAAAAIIIITTTTAAAALLLLLLLL((((3333))))                                                  MMMMPPPPIIII____WWWWAAAAIIIITTTTAAAALLLLLLLL((((3333))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      MMMMPPPPIIII____WWWWaaaaiiiittttaaaallllllll - Waits for all given communications to complete
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      C:
  13.  
  14.           #include <mpi.h>
  15.  
  16.           int MPI_Waitall(_c_o_u_n_t, _a_r_r_a_y__o_f__r_e_q_u_e_s_t_s, _a_r_r_a_y__o_f__s_t_a_t_u_s_e_s )
  17.           int         _c_o_u_n_t;
  18.           MPI_Request _a_r_r_a_y__o_f__r_e_q_u_e_s_t_s[];
  19.           MPI_Status  _a_r_r_a_y__o_f__s_t_a_t_u_s_e_s[];
  20.  
  21.  
  22.      C++:
  23.  
  24.           #include <mpi.h>
  25.  
  26.           static void Request::Waitall(
  27.           int               _c_o_u_n_t,
  28.           Request           _a_r_r_a_y__o_f__r_e_q_u_e_s_t_s[])
  29.  
  30.  
  31.      Fortran:
  32.  
  33.           INCLUDE "mpif.h" (or USE MPI)
  34.  
  35.           INTEGER _c_o_u_n_t, _a_r_r_a_y__o_f__r_e_q_u_e_s_t_s(*)
  36.           INTEGER _a_r_r_a_y__o_f__s_t_a_t_u_s_e_s(MPI_STATUS_SIZE,*), _i_e_r_r_o_r
  37.  
  38.           CALL MPI_WAITALL(_c_o_u_n_t, _a_r_r_a_y__o_f__r_e_q_u_e_s_t_s(*), _a_r_r_a_y__o_f__s_t_a_t_u_s_e_s(MPI_STATUS_SIZE,*), _i_e_r_r_o_r)
  39.  
  40.  
  41. SSSSTTTTAAAANNNNDDDDAAAARRRRDDDDSSSS
  42.      This release implements the MPI 1.2 standard, as documented by the MPI
  43.      Forum in the spring 1997 release of _M_P_I:  _A _M_e_s_s_a_g_e _P_a_s_s_i_n_g _I_n_t_e_r_f_a_c_e
  44.      _S_t_a_n_d_a_r_d.
  45.  
  46. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  47.      The MMMMPPPPIIII____WWWWaaaaiiiittttaaaallllllll routine waits for all given communications to complete.
  48.      This routine accepts the following parameters:
  49.  
  50.      _c_o_u_n_t     Specifies the list length (integer)
  51.  
  52.      _a_r_r_a_y__o_f__r_e_q_u_e_s_t_s
  53.                Specifies an array of requests (array of handles)
  54.  
  55.      _a_r_r_a_y__o_f__s_t_a_t_u_s_e_s
  56.                Returns an array of status objects (array of status)
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. MMMMPPPPIIII____WWWWAAAAIIIITTTTAAAALLLLLLLL((((3333))))                                                  MMMMPPPPIIII____WWWWAAAAIIIITTTTAAAALLLLLLLL((((3333))))
  71.  
  72.  
  73.  
  74.      _i_e_r_r_o_r    Specifies the return code value for successful completion,
  75.                which is in MPI_SUCCESS.  MPI_SUCCESS is defined in the mmmmppppiiiiffff....hhhh
  76.                file.
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.